home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource3 / 144_01 / tee.hlp < prev    next >
Text File  |  1985-08-21  |  2KB  |  39 lines

  1. **********************************************************************
  2. *                               TEE                                  *
  3. **********************************************************************
  4. *                  COPYRIGHT 1983 EUGENE H. MALLORY                  *
  5. **********************************************************************
  6. PROGRAM:
  7.     TEE - TEE pipe fitting. can make a side copy of a pipe
  8.     stream.
  9. USAGE:
  10.     TEE [<fid] teefil [>fid]
  11. FUNCTION:
  12.     Copies from standard input to standard output with no change 
  13.     while making a side copy of a file.
  14. EXAMPLE:
  15.     TEE <FILE1 FILE1.BAK >FILE2         {file to file}
  16.     TEE LOGFILE                         {keyboard to screen}
  17.     TEE <ABC ABC.BAK  >lst:             {fiie to list device}
  18.         
  19.  
  20.  
  21.         Command Line                       
  22.  
  23. ___________________________________  
  24.                                   |  
  25.                                   |  
  26.                                   |  FILE NAME
  27.                                   |  
  28.                                   |                  
  29.                     ______________V______________    
  30.  Standard Input     |                           |   Standard Output
  31.      TEXT           |                           |        TEXT
  32. ------------------->|            TEE            |----------------------->
  33.                     |                           |
  34.                     |                           |
  35.                     |___________________________|
  36.                                   |
  37.                                   |      TEXT
  38.                                   |---------------> "Tee File"
  39.